home *** CD-ROM | disk | FTP | other *** search
- /* samc04016.c */
-
- #include "teglsys.h"
-
-
- void main()
- {
- imagestkptr fs;
- unsigned i;
-
- easytegl();
-
- pushimage(1,1,20,20);
- shadowbox(1,1,20,20);
- fs = stackptr;
-
- pushimage(50,50,150,150);
- shadowbox(50,50,150,150);
-
- for(i=0;i<=100;i++)
- movestackimage(fs,fs->x+2,fs->y+2);
-
- while(mouse_buttons == 0);
- abort_msg("");
- }